home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -in_the_mag- / emulation / amiga / uae-0.7.0b2 / src / od-generic / sound.c < prev    next >
C/C++ Source or Header  |  1998-01-20  |  498b  |  35 lines

  1.  /* 
  2.   * UAE - The Un*x Amiga Emulator
  3.   * 
  4.   * Support for the Mute sound system
  5.   * 
  6.   * Copyright 1997 Bernd Schmidt
  7.   */
  8.  
  9. #include "sysconfig.h"
  10. #include "sysdeps.h"
  11.  
  12. #include "config.h"
  13. #include "options.h"
  14. #include "memory.h"
  15. #include "custom.h"
  16. #include "audio.h"
  17. #include "gensound.h"
  18. #include "sounddep/sound.h"
  19.  
  20. int init_sound (void)
  21. {
  22.     currprefs.produce_sound = 0;
  23.     return 1;
  24. }
  25.  
  26. int setup_sound (void)
  27. {
  28.     currprefs.produce_sound = 0;
  29.     return 1;
  30. }
  31.  
  32. void close_sound(void)
  33. {
  34. }
  35.